CLIからHTMLファイルをlocalhostでweb broserに表示する
閲覧したいdirectoryで↓を実行する
$ deno run --allow-net --allow-read jsr:@std/http/file-server
framworkを使う
閲覧したいdirectoryで↓を実行する
code:script.ts
const app = createApp();
app.use(serveStatic("./"));
const port = 8899;
app.listen({ port });
console.log(open http://localhost:${port});
code:index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>local server page</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div id="main"></div>
<script src="./index.js" type="module"></script>
</body>
</html>